home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / v cisle / httrack / httrack-3.41-2.exe / {app} / src / htslib.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-02-03  |  23.0 KB  |  632 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Subroutines .h                                         */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. // Fichier librairie .h
  38.  
  39. #ifndef HTS_DEFH
  40. #define HTS_DEFH 
  41.  
  42. /* Forward definitions */
  43. #ifndef HTS_DEF_FWSTRUCT_htsrequest
  44. #define HTS_DEF_FWSTRUCT_htsrequest
  45. typedef struct htsrequest htsrequest;
  46. #endif
  47. #ifndef HTS_DEF_FWSTRUCT_htsblk
  48. #define HTS_DEF_FWSTRUCT_htsblk
  49. typedef struct htsblk htsblk;
  50. #endif
  51. #ifndef HTS_DEF_FWSTRUCT_t_dnscache
  52. #define HTS_DEF_FWSTRUCT_t_dnscache
  53. typedef struct t_dnscache t_dnscache;
  54. #endif
  55.  
  56. /* dΘfinitions globales */
  57. #include "htsglobal.h"
  58.  
  59. /* basic net definitions */
  60. #include "htsbase.h"
  61. #include "htsbasenet.h"
  62. #include "htsnet.h"
  63. #include "htsdefines.h"
  64.  
  65. /* cookies et auth */
  66. #include "htsbauth.h"
  67.  
  68. // Attention, dΘfinition existante Θgalement dans le shell
  69. // (α modifier avec celle-ci)
  70. #define POSTTOK "?>post"
  71.  
  72. #include "htsopt.h"
  73.  
  74. #define READ_ERROR (-1)
  75. #define READ_EOF (-2)
  76. #define READ_TIMEOUT (-3)
  77. #define READ_INTERNAL_ERROR (-4)
  78.  
  79. /* concat */
  80. HTS_STATIC char* getHtsOptBuff_(httrackp *opt) {
  81.     opt->state.concat.index = ( opt->state.concat.index + 1 ) % 16;
  82.     return opt->state.concat.buff[opt->state.concat.index];
  83. }
  84. #define OPT_GET_BUFF(OPT) ( getHtsOptBuff_(OPT) )
  85.  
  86. // structure pour paramΦtres supplΘmentaires lors de la requΩte
  87. #ifndef HTS_DEF_FWSTRUCT_htsrequest_proxy
  88. #define HTS_DEF_FWSTRUCT_htsrequest_proxy
  89. typedef struct htsrequest_proxy htsrequest_proxy;
  90. #endif
  91. struct htsrequest_proxy {
  92.   int active;
  93.   char name[1024];
  94.   int port;
  95.   char bindhost[256];   // bind this host
  96. }; 
  97. #ifndef HTS_DEF_FWSTRUCT_htsrequest
  98. #define HTS_DEF_FWSTRUCT_htsrequest
  99. typedef struct htsrequest htsrequest;
  100. #endif
  101. struct htsrequest {
  102.   short int user_agent_send;  // user agent (ex: httrack/1.0 [sun])
  103.   short int http11;           // l'en tΩte peut (doit) Ωtre signΘ HTTP/1.1 et non HTTP/1.0
  104.   short int nokeepalive;      // pas de keep-alive
  105.   short int range_used;       // Range utilisΘ
  106.   short int nocompression;    // Pas de compression
  107.   short int flush_garbage;    // recycled
  108.   char user_agent[128];
  109.   char referer[256];
  110.   char from[256];
  111.   char lang_iso[64];
  112.   htsrequest_proxy proxy;              // proxy
  113. };
  114.  
  115.  
  116. // structure pour retour d'une connexion/prise d'en tΩte
  117. #ifndef HTS_DEF_FWSTRUCT_htsblk
  118. #define HTS_DEF_FWSTRUCT_htsblk
  119. typedef struct htsblk htsblk;
  120. #endif
  121. struct htsblk {
  122.   int statuscode;        // status-code, -1=erreur, 200=OK,201=..etc (cf RFC1945)
  123.   short int notmodified; // page ou fichier NON modifiΘ (transfΘrΘ)
  124.   short int is_write;    // sortie sur disque (out) ou en mΘmoire (adr)
  125.   short int is_chunk;    // mode chunk
  126.   short int compressed;  // compressΘ?
  127.   short int empty;       // vide?
  128.   short int keep_alive;  // Keep-Alive?
  129.   short int keep_alive_trailers;  // ..with trailers extension
  130.   int keep_alive_t;      // KA timeout
  131.   int keep_alive_max;    // KA number of requests
  132.   char* adr;             // adresse du bloc de mΘmoire, NULL=vide
  133.   char* headers;         // adresse des en tΩtes si prΘsents
  134.   FILE* out;             // Θcriture directe sur disque (si is_write=1)
  135.   LLint size;            // taille fichier
  136.   char msg[80];          // message Θventuel si Θchec ("\0"=non prΘcisΘ)
  137.   char contenttype[64];  // content-type ("text/html" par exemple)
  138.   char charset[64];      // charset ("iso-8859-1" par exemple)
  139.   char contentencoding[64];  // content-encoding ("gzip" par exemple)
  140.   char* location;        // on copie dedans Θventuellement la vΘritable 'location'
  141.   LLint totalsize;       // taille totale α tΘlΘcharger (-1=inconnue)
  142.   short int is_file;     // ce n'est pas une socket mais un descripteur de fichier si 1
  143.   T_SOC soc;             // ID socket
  144.   SOCaddr address;       // IP address
  145.   int     address_size;  // IP address structure length
  146.   FILE* fp;              // fichier pour file://
  147. #if HTS_USEOPENSSL
  148.   short int ssl;         // is this connection a SSL one? (https)
  149.   // BIO* ssl_soc;          // SSL structure
  150.   SSL * ssl_con;         // connection structure
  151. #endif
  152.   char lastmodified[64]; // Last-Modified
  153.   char etag[64];         // Etag
  154.   char cdispo[256];      // Content-Disposition coupΘ
  155.   LLint  crange;         // Content-Range
  156.   int debugid;           // debug connection
  157.   /* */
  158.   htsrequest req;        // paramΦtres pour la requΩte
  159.   /*char digest[32+2];   // digest md5 gΘnΘrΘ par le moteur ("" si non gΘnΘrΘ)*/
  160. };
  161.  
  162.  
  163. /* ANCIENNE STURCTURE pour cache 1.0 */
  164. #ifndef HTS_DEF_FWSTRUCT_OLD_t_proxy
  165. #define HTS_DEF_FWSTRUCT_OLD_t_proxy
  166. typedef struct OLD_t_proxy OLD_t_proxy;
  167. #endif
  168. struct OLD_t_proxy {
  169.   int active;
  170.   char name[1024];
  171.   int port;
  172. }; 
  173. #ifndef HTS_DEF_FWSTRUCT_OLD_htsblk
  174. #define HTS_DEF_FWSTRUCT_OLD_htsblk
  175. typedef struct OLD_htsblk OLD_htsblk;
  176. #endif
  177. struct OLD_htsblk {
  178.   int statuscode;  // ANCIENNE STURCTURE - status-code, -1=erreur, 200=OK,201=..etc (cf RFC1945)
  179.   int notmodified; // ANCIENNE STURCTURE - page ou fichier NON modifiΘ (transfΘrΘ)
  180.   int is_write;    // ANCIENNE STURCTURE - sortie sur disque (out) ou en mΘmoire (adr)
  181.   char* adr;       // ANCIENNE STURCTURE - adresse du bloc de mΘmoire, NULL=vide
  182.   FILE* out;       // ANCIENNE STURCTURE - Θcriture directe sur disque (si is_write=1)
  183.   int size;        // ANCIENNE STURCTURE - taille fichier
  184.   char msg[80];    // ANCIENNE STURCTURE - message Θventuel si Θchec ("\0"=non prΘcisΘ)
  185.   char contenttype[64];  // ANCIENNE STURCTURE - content-type ("text/html" par exemple)
  186.   char* location;  // ANCIENNE STURCTURE - on copie dedans Θventuellement la vΘritable 'location'
  187.   int totalsize;   // ANCIENNE STURCTURE - taille totale α tΘlΘcharger (-1=inconnue)
  188.   int is_file;     // ANCIENNE STURCTURE - ce n'est pas une socket mais un descripteur de fichier si 1
  189.   T_SOC soc;       // ANCIENNE STURCTURE - ID socket
  190.   FILE* fp;        // ANCIENNE STURCTURE - fichier pour file://
  191.   OLD_t_proxy proxy;   // ANCIENNE STURCTURE - proxy
  192.   int user_agent_send;  // ANCIENNE STURCTURE - user agent (ex: httrack/1.0 [sun])
  193.   char user_agent[64];
  194.   int http11;           // ANCIENNE STURCTURE - l'en tΩte doit Ωtre signΘ HTTP/1.1 et non HTTP/1.0
  195. };
  196. /* fin ANCIENNE STURCTURE pour cache 1.0 */
  197.  
  198. // cache pour le dns, pour Θviter de faire des gethostbyname sans arrΩt
  199. #ifndef HTS_DEF_FWSTRUCT_t_dnscache
  200. #define HTS_DEF_FWSTRUCT_t_dnscache
  201. typedef struct t_dnscache t_dnscache;
  202. #endif
  203. struct t_dnscache {
  204.   char iadr[1024];
  205.   struct t_dnscache* n;
  206.   char host_addr[HTS_MAXADDRLEN];    // 4 octets (v4), ou 16 octets (v6)
  207.   int host_length;                   // 4 normalement - ==0  alors en cours de rΘsolution
  208.                                      // ou >16 si sockaddr
  209.                                      //                 ==-1 alors erreur (host n'Θxiste pas)
  210. };
  211.  
  212.  
  213. /* Library internal definictions */
  214. #ifdef HTS_INTERNAL_BYTECODE
  215.  
  216. extern htsmutex dns_lock;
  217.  
  218. // fonctions unix/winsock
  219. int hts_read(htsblk* r,char* buff,int size);
  220. //int HTS_TOTAL_RECV_CHECK(int var);
  221. LLint check_downloadable_bytes(int rate);
  222.  
  223. #ifndef HTTRACK_DEFLIB
  224. HTSEXT_API int hts_init(void);
  225. HTSEXT_API int hts_uninit(void);
  226. HTSEXT_API int hts_uninit_module(void);
  227. HTSEXT_API int hts_resetvar(void);  /* dummy */
  228. HTSEXT_API void hts_debug(int level);
  229. HTSEXT_API httrackp* hts_create_opt(void);
  230. HTSEXT_API void hts_free_opt(httrackp *opt);
  231. HTSEXT_API void set_wrappers(httrackp *opt);    /* LEGACY */
  232. HTSEXT_API int plug_wrapper(httrackp *opt, const char *moduleName, const char* argv);
  233.  
  234. HTSEXT_API char* hts_strdup(const char* string);
  235. HTSEXT_API void* hts_malloc(size_t size);
  236. HTSEXT_API void* hts_realloc(void* data, size_t size);
  237. HTSEXT_API void hts_free(void* data);
  238. #endif
  239. extern int hts_dgb_init;
  240. extern FILE* hts_dgb_(void);
  241. #undef _
  242. #define _ ,
  243. #define HTS_DBG(FMT) do {     \
  244.   if (hts_dgb_init > 0) {     \
  245.     FILE *fp = hts_dgb_();    \
  246.     fprintf(fp, FMT);         \
  247.     fprintf(fp, "\n");        \
  248.     fflush(fp);               \
  249.   }                           \
  250. } while(0)
  251.  
  252. // fonctions principales
  253. int http_fopen(httrackp *opt,char* adr,char* fil,htsblk* retour);
  254. int http_xfopen(httrackp *opt,int mode,int treat,int waitconnect,char* xsend,char* adr,char* fil,htsblk* retour);
  255. int http_sendhead(httrackp *opt,t_cookie* cookie,int mode,char* xsend,char* adr,char* fil,char* referer_adr,char* referer_fil,htsblk* retour);
  256. htsblk httpget(httrackp *opt,char* url);
  257. //int newhttp(char* iadr,char* err=NULL);
  258. int newhttp(httrackp *opt,const char* iadr,htsblk* retour,int port,int waitconnect);
  259. HTS_INLINE void deletehttp(htsblk* r);
  260. HTS_INLINE int  deleteaddr(htsblk* r);
  261. HTS_INLINE void deletesoc(T_SOC soc);
  262. HTS_INLINE void deletesoc_r(htsblk* r);
  263. htsblk http_location(httrackp *opt,char* adr,char* fil,char* loc);
  264. htsblk http_test(httrackp *opt,char* adr,char* fil,char* loc);
  265. int check_readinput(htsblk* r);
  266. int check_readinput_t(T_SOC soc, int timeout);
  267. void http_fread(T_SOC soc,htsblk* retour);
  268. LLint http_fread1(htsblk* r);
  269. void treathead(t_cookie* cookie,char* adr,char* fil,htsblk* retour,char* rcvd);
  270. void treatfirstline(htsblk* retour,char* rcvd);
  271. #ifndef HTTRACK_DEFLIB
  272. HTSEXT_API void infostatuscode(char* msg,int statuscode);
  273. #endif
  274.  
  275. // sous-fonctions
  276. htsblk xhttpget(httrackp *opt,char* adr,char* fil);
  277. htsblk http_gethead(httrackp *opt,char* adr,char* fil);
  278. LLint http_xfread1(htsblk* r,int bufl);
  279. HTS_INLINE t_hostent* hts_gethostbyname(httrackp *opt,const char* iadr, void* v_buffer);
  280. #ifndef HTTRACK_DEFLIB
  281. HTSEXT_API t_hostent* vxgethostbyname(char* hostname, void* v_buffer);
  282. #endif
  283. t_hostent* _hts_ghbn(t_dnscache* cache,const char* iadr,t_hostent* retour);
  284. int ftp_available(void);
  285. #if HTS_DNSCACHE
  286. void hts_cache_free(t_dnscache* cache);
  287. int hts_dnstest(httrackp *opt, const char* _iadr);
  288. t_dnscache* _hts_cache(httrackp *opt);
  289. #endif
  290.  
  291. // outils divers
  292. HTS_INLINE TStamp time_local(void);
  293. #ifndef HTTRACK_DEFLIB
  294. HTSEXT_API HTS_INLINE TStamp mtime_local(void);
  295. #endif
  296. void sec2str(char *s,TStamp t);
  297. #ifndef HTTRACK_DEFLIB
  298. HTSEXT_API void qsec2str(char *st,TStamp t);
  299. #endif
  300. void time_gmt_rfc822(char* s);
  301. void time_local_rfc822(char* s);
  302. struct tm* convert_time_rfc822(struct tm* buffer, const char* s);
  303. int set_filetime(const char* file,struct tm* tm_time);
  304. int set_filetime_rfc822(const char* file,const char* date);
  305. int get_filetime_rfc822(const char* file,char* date);
  306. HTS_INLINE void time_rfc822(char* s,struct tm * A);
  307. HTS_INLINE void time_rfc822_local(char* s,struct tm * A);
  308. #ifndef HTTRACK_DEFLIB
  309. HTSEXT_API char* int2char(strc_int2bytes2* strc, int n);
  310. HTSEXT_API char* int2bytes(strc_int2bytes2* strc, LLint n);
  311. HTSEXT_API char* int2bytessec(strc_int2bytes2* strc, long int n);
  312. HTSEXT_API char** int2bytes2(strc_int2bytes2* strc, LLint n);
  313. #endif
  314. HTS_INLINE int sendc(htsblk* r, const char* s);
  315. int finput(int fd,char* s,int max);
  316. int binput(char* buff,char* s,int max);
  317. int linput(FILE* fp,char* s,int max);
  318. int linputsoc(T_SOC soc, char* s, int max);
  319. int linputsoc_t(T_SOC soc, char* s, int max, int timeout);
  320. int linput_trim(FILE* fp,char* s,int max);
  321. int linput_cpp(FILE* fp,char* s,int max);
  322. void rawlinput(FILE* fp,char* s,int max);
  323. char* strstrcase(char *s,char *o);
  324. int ident_url_absolute(const char* url,char* adr,char* fil);
  325. void fil_simplifie(char* f);
  326. int is_unicode_utf8(unsigned char* buffer, unsigned int size);
  327. void map_characters(unsigned char* buffer, unsigned int size, unsigned int* map);
  328. int ishtml(httrackp *opt,const char* urlfil);
  329. int ishtml_ext(const char* a);
  330. int ishttperror(int err);
  331. void guess_httptype(httrackp *opt,char *s,const char *fil);
  332. #ifndef HTTRACK_DEFLIB
  333. HTSEXT_API void get_httptype(httrackp *opt,char *s,const char *fil,int flag);
  334. #endif
  335. int get_userhttptype(httrackp *opt,char *s,const char *fil);
  336. void give_mimext(char *s,const char *st);
  337. #ifndef HTTRACK_DEFLIB
  338. HTSEXT_API int is_knowntype(httrackp *opt,const char *fil);
  339. HTSEXT_API int is_userknowntype(httrackp *opt,const char *fil);
  340. HTSEXT_API int is_dyntype(const char *fil);
  341. HTSEXT_API char* get_ext(char *catbuff, const char *fil);
  342. #endif
  343. int may_unknown(httrackp *opt,const char* st);
  344. #ifndef HTTRACK_DEFLIB
  345. HTSEXT_API char* jump_identification(const char*);
  346. HTSEXT_API char* jump_normalized(const char*);
  347. HTSEXT_API char* jump_toport(const char*);
  348. HTSEXT_API char* fil_normalized(const char* source, char* dest);
  349. HTSEXT_API char* adr_normalized(const char* source, char* dest);
  350. #endif
  351. char* strrchr_limit(const char* s, char c, const char* limit);
  352. char* strstr_limit(const char* s, const char* sub, const char* limit);
  353. HTS_INLINE char* jump_protocol(const char* source);
  354. void code64(unsigned char* a,int size_a,unsigned char* b,int crlf);
  355. #ifndef HTTRACK_DEFLIB
  356. HTSEXT_API void unescape_amp(char* s);
  357. HTSEXT_API void escape_spc_url(char* s);
  358. HTSEXT_API void escape_in_url(char* s);
  359. HTSEXT_API void escape_uri(char* s);
  360. HTSEXT_API void escape_uri_utf(char* s);
  361. HTSEXT_API void escape_check_url(char* s);
  362. HTSEXT_API char* escape_check_url_addr(char *catbuff, const char* s);
  363. HTSEXT_API void x_escape_http(char* s,int mode);
  364. HTSEXT_API void x_escape_html(char* s);
  365. HTSEXT_API void escape_remove_control(char* s);
  366. HTSEXT_API void escape_for_html_print(char* s, char* d);
  367. HTSEXT_API void escape_for_html_print_full(char* s, char* d);
  368. #endif
  369. #ifndef HTTRACK_DEFLIB
  370. HTSEXT_API char* unescape_http(char *catbuff, const char* s);
  371. HTSEXT_API char* unescape_http_unharm(char *catbuff, const char* s, int no_high);
  372. HTSEXT_API char* antislash_unescaped(char *catbuff, const char* s);
  373. HTSEXT_API char* concat(char *catbuff,const char* a,const char* b);
  374. HTSEXT_API char* fconcat(char *catbuff, const char* a, const char* b);
  375. HTSEXT_API char* fconv(char *catbuff, const char* a);
  376. #endif
  377. #define copychar(catbuff,a) concat(catbuff,(a),NULL)
  378. char* fslash(char *catbuff, const char* a);
  379. #ifndef HTTRACK_DEFLIB
  380. HTSEXT_API int hts_log(httrackp *opt, const char* prefix, const char *msg);
  381. #endif
  382.  
  383. char* convtolower(char *catbuff, const char* a);
  384. void hts_lowcase(char* s);
  385. void hts_replace(char *s,char from,char to);
  386. int multipleStringMatch(const char *s, const char *match);
  387.  
  388.  
  389. void fprintfio(FILE* fp,char* buff,char* prefix);
  390.  
  391. #ifdef _WIN32
  392. #else
  393. int sig_ignore_flag( int setflag );     // flag ignore
  394. #endif
  395.  
  396. void cut_path(char* fullpath,char* path,char* pname);
  397. int fexist(const char* s);
  398. /*LLint fsize(const char* s);    */
  399. off_t fpsize(FILE* fp);
  400. off_t fsize(const char* s);    
  401. /* root dir */
  402. #ifndef HTTRACK_DEFLIB
  403. HTSEXT_API char* hts_rootdir(char* file);
  404. #endif
  405.  
  406. // Threads
  407. typedef void* ( *beginthread_type )( void * );
  408. /*unsigned long _beginthread( beginthread_type start_address, unsigned stack_size, void *arglist );*/
  409.  
  410. /* variables globales */
  411. extern HTSEXT_API hts_stat_struct HTS_STAT;
  412. extern int _DEBUG_HEAD;
  413. extern FILE* ioinfo;
  414.  
  415. /* constantes */
  416. extern const char* hts_mime_keep[];
  417. extern const char* hts_mime[][2];
  418. extern const char* hts_main_mime[];
  419. extern const char* hts_detect[];
  420. extern const char* hts_detectbeg[];
  421. extern const char* hts_nodetect[];
  422. extern const char* hts_detectURL[];
  423. extern const char* hts_detectandleave[];
  424. extern const char* hts_detect_js[];
  425.  
  426. // htsmodule.c definitions
  427. extern void* openFunctionLib(const char* file_);
  428. extern void* getFunctionPtr(void* handle, const char* fncname);
  429. extern void  closeFunctionLib(void* handle);
  430.  
  431. extern void clearCallbacks(htscallbacks* chain);
  432. extern size_t hts_get_callback_offs(const char *name);
  433. int hts_set_callback(t_hts_htmlcheck_callbacks *callbacks, const char *name, void *function);
  434. void *hts_get_callback(t_hts_htmlcheck_callbacks *callbacks, const char *name);
  435.  
  436. #define CBSTRUCT(OPT) ((t_hts_htmlcheck_callbacks*) ((OPT)->callbacks_fun))
  437. #define GET_USERCALLBACK(OPT, NAME) ( CBSTRUCT(OPT)-> NAME .fun )
  438. #define GET_USERARG(OPT, NAME) ( CBSTRUCT(OPT)-> NAME .carg )
  439. #define GET_USERDEF(OPT, NAME) ( \
  440.   (CBSTRUCT(OPT) != NULL && CBSTRUCT(OPT)-> NAME .fun != NULL) \
  441.     ? ( GET_USERARG(OPT, NAME) ) \
  442.     : ( default_callbacks. NAME .carg ) \
  443. )
  444. #define GET_CALLBACK(OPT, NAME) ( \
  445.   (CBSTRUCT(OPT) != NULL && CBSTRUCT(OPT)-> NAME .fun != NULL) \
  446.     ? ( GET_USERCALLBACK(OPT, NAME ) ) \
  447.   : ( default_callbacks. NAME .fun ) \
  448. )
  449.  
  450. /* Predefined macros */
  451. #define RUN_CALLBACK_NOARG(OPT, NAME) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME))
  452. #define RUN_CALLBACK0(OPT, NAME) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT)
  453. #define RUN_CALLBACK1(OPT, NAME, ARG1) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT, ARG1)
  454. #define RUN_CALLBACK2(OPT, NAME, ARG1, ARG2) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT, ARG1, ARG2)
  455. #define RUN_CALLBACK3(OPT, NAME, ARG1, ARG2, ARG3) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT, ARG1, ARG2, ARG3)
  456. #define RUN_CALLBACK4(OPT, NAME, ARG1, ARG2, ARG3, ARG4) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT, ARG1, ARG2, ARG3, ARG4)
  457. #define RUN_CALLBACK5(OPT, NAME, ARG1, ARG2, ARG3, ARG4, ARG5) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT, ARG1, ARG2, ARG3, ARG4, ARG5)
  458. #define RUN_CALLBACK6(OPT, NAME, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6)
  459. #define RUN_CALLBACK7(OPT, NAME, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7)
  460. #define RUN_CALLBACK8(OPT, NAME, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7, ARG8) GET_CALLBACK(OPT, NAME)(GET_USERARG(OPT, NAME), OPT, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7, ARG8)
  461.  
  462. /*
  463. #define GET_CALLBACK(OPT, NAME, ARG) ( \
  464.   ( \
  465.     ( ARG ) = GET_USERDEF(OPT, NAME), \
  466.     ( \
  467.          (CBSTRUCT(OPT) != NULL && CBSTRUCT(OPT)-> NAME .fun != NULL) \
  468.         ? ( GET_USERCALLBACK(OPT, NAME ) ) \
  469.       : ( default_callbacks. NAME .fun ) \
  470.     ) \
  471.   ) \
  472. )
  473. */
  474.  
  475. #endif    // internals
  476.  
  477. #undef PATH_SEPARATOR
  478. #ifdef _WIN32
  479. #define PATH_SEPARATOR '\\'
  480. #else
  481. #define PATH_SEPARATOR '/'
  482. #endif
  483.  
  484. /* Spaces: CR,LF,TAB,FF */
  485. #define  is_space(c)      ( ((c)==' ') || ((c)=='\"') || ((c)==10) || ((c)==13) || ((c)==9) || ((c)==12) || ((c)==11) || ((c)=='\'') )
  486. #define  is_realspace(c)  ( ((c)==' ')                || ((c)==10) || ((c)==13) || ((c)==9) || ((c)==12) || ((c)==11)                )
  487. #define  is_taborspace(c) ( ((c)==' ')                                          || ((c)==9)                             )
  488. #define  is_quote(c)      (               ((c)=='\"')                                                    || ((c)=='\'') )
  489. #define  is_retorsep(c)   (                              ((c)==10) || ((c)==13) || ((c)==9)                                          )
  490. //HTS_INLINE int is_space(char);
  491. //HTS_INLINE int is_realspace(char);
  492.  
  493. #define HTTP_IS_REDIRECT(code) ( \
  494.      (code) == 301               \
  495.   || (code) == 302               \
  496.   || (code) == 303               \
  497.   || (code) == 307               \
  498.   )
  499. #define HTTP_IS_NOTMODIFIED(code) ( \
  500.      (code) == 304               \
  501.   )
  502. #define HTTP_IS_OK(code) ( ( (code) / 100 ) == 2 )
  503. #define HTTP_IS_ERROR(code) ( !HTTP_IS_OK(code) && !HTTP_IS_REDIRECT(code) && !HTTP_IS_NOTMODIFIED(code) )
  504.  
  505. // compare le dΘbut de f avec s et retourne la position de la fin
  506. // 'A=a' (case insensitive)
  507. HTS_STATIC int strfield(const char* f,const char* s) {
  508.   int r=0;
  509.   while (streql(*f,*s) && ((*f)!=0) && ((*s)!=0)) { f++; s++; r++; }
  510.   if (*s==0)
  511.     return r;
  512.   else
  513.     return 0;
  514. }
  515. HTS_STATIC int strcmpnocase(char* a,char* b) {
  516.   while(*a) {
  517.     int cmp = hichar(*a) - hichar(*b);
  518.     if (cmp != 0)
  519.       return cmp;
  520.     a++;
  521.     b++;
  522.   }
  523.   return 0;
  524. }
  525.  
  526. #ifdef _WIN32
  527. #define strcasecmp(a,b) stricmp(a,b)
  528. #define strncasecmp(a,b,n) strnicmp(a,b,n)
  529. #endif
  530.  
  531. #define strfield2(f,s) ( (strlen(f)!=strlen(s)) ? 0 : (strfield(f,s)) )
  532.  
  533. // is this MIME an hypertext MIME (text/html), html/js-style or other script/text type?
  534. #define HTS_HYPERTEXT_DEFAULT_MIME "text/html"
  535.  
  536. #if HTS_USEMMS
  537. #define OPT_MMS(a) (strfield2((a), "video/x-ms-asf") != 0)
  538. #else
  539. #define OPT_MMS(a) (0)
  540. #endif
  541. #define is_hypertext_mime__(a) \
  542.   ( (strfield2((a),"text/html")!=0)\
  543.   || (strfield2((a),"application/x-javascript")!=0) \
  544.   || (strfield2((a),"text/css")!=0) \
  545.   /*|| (strfield2((a),"text/vnd.wap.wml")!=0)*/ \
  546.   || (strfield2((a),"image/svg+xml")!=0) \
  547.   || (strfield2((a),"image/svg-xml")!=0) \
  548.   /*|| (strfield2((a),"audio/x-pn-realaudio")!=0) */\
  549.   || (strfield2((a),"application/x-authorware-map")!=0) \
  550.   )
  551. #define may_be_hypertext_mime__(a) \
  552.    (\
  553.      (strfield2((a),"audio/x-pn-realaudio")!=0) \
  554.      || (strfield2((a),"audio/x-mpegurl")!=0) \
  555.      /*|| (strfield2((a),"text/xml")!=0) || (strfield2((a),"application/xml")!=0) : TODO: content check */ \
  556.      || OPT_MMS(a) \
  557.   )
  558.  
  559.  
  560. /* Library internal definictions */
  561. #ifdef HTS_INTERNAL_BYTECODE
  562.  
  563. // check if (mime, file) is hypertext
  564. HTS_STATIC int is_hypertext_mime(httrackp *opt,const char* mime, const char* file) {
  565.   if (is_hypertext_mime__(mime))
  566.     return 1;
  567.   if (may_unknown(opt,mime)) {
  568.     char guessed[256];
  569.     guessed[0] = '\0';
  570.     guess_httptype(opt,guessed, file);
  571.     return is_hypertext_mime__(guessed);
  572.   }
  573.   return 0;
  574. }
  575.  
  576. // check if (mime, file) might be "false" hypertext
  577. HTS_STATIC int may_be_hypertext_mime(httrackp *opt,const char* mime, const char* file) {
  578.   if (may_be_hypertext_mime__(mime))
  579.     return 1;
  580.   if (file != NULL && file[0] != '\0' && may_unknown(opt,mime)) {
  581.     char guessed[256];
  582.     guessed[0] = '\0';
  583.     guess_httptype(opt,guessed, file);
  584.     return may_be_hypertext_mime__(guessed);
  585.   }
  586.   return 0;
  587. }
  588.  
  589. // compare (mime, file) with reference
  590. HTS_STATIC int compare_mime(httrackp *opt,const char* mime, const char* file, const char* reference) {
  591.   if (is_hypertext_mime__(mime) || may_be_hypertext_mime__(mime))
  592.     return strfield2(mime, reference);
  593.   if (file != NULL && file[0] != '\0' && may_unknown(opt,mime)) {
  594.     char guessed[256];
  595.     guessed[0] = '\0';
  596.     guess_httptype(opt,guessed, file);
  597.     return strfield2(guessed, reference);
  598.   }
  599.   return 0;
  600. }
  601.  
  602. #endif
  603.  
  604. #ifdef _WIN32_WCE_XXC
  605. extern char cwd[MAX_PATH+1];
  606. HTS_STATIC char *getcwd_ce(char *buffer, int maxlen) {
  607.     TCHAR fileUnc[MAX_PATH+1];
  608.     char* plast;
  609.     
  610.     if(cwd[0] == 0)
  611.     {
  612.         GetModuleFileName(NULL, fileUnc, MAX_PATH);
  613.         WideCharToMultiByte(CP_ACP, 0, fileUnc, -1, cwd, MAX_PATH, NULL, NULL);
  614.         plast = strrchr(cwd, '\\');
  615.         if(plast)
  616.             *plast = 0;
  617.         /* Special trick to keep start menu clean... */
  618.         if(_stricmp(cwd, "\\windows\\start menu") == 0)
  619.             strcpy(cwd, "\\Apps");
  620.     }
  621.     if(buffer)
  622.         strncpy(buffer, cwd, maxlen);
  623.     return cwd;
  624. }
  625. #undef getcwd
  626. #define getcwd getcwd_ce
  627. #endif
  628.  
  629. #endif
  630.  
  631.  
  632.